4.0 defaults
[betaflight.git] / docs / development / Building in Fedora.md
blob55b7828c8883f8c9b56598a9c88012cec89a22a0
1 # Building in Fedora
3 Assuming you already have wget and git available, you should be able to build Betaflight on a fresh install of Fedora with the following commands (tested on F18, F20 and Ubuntu 14.04):
5 ```
6 wget http://distribute.atmel.no/tools/opensource/Atmel-ARM-GNU-Toolchain/4.8.4/arm-gnu-toolchain-4.8.4.371-linux.any.x86_64.tar.gz
8 tar xf arm-gnu-toolchain-4.8.4.371-linux.any.x86_64.tar.gz
9 export PATH=$PATH:$PWD/arm-none-eabi/bin
11 git clone https://github.com/betaflight/betaflight.git
12 cd betaflight
13 TARGET=NAZE make
14 ```
16 This will create betaflight_NAZE.hex in the obj folder.